
.section{
	width: 100%;
	/*background: #ccc;*/
}
.testquiz-title {
  height: 200px;
  background-image:linear-gradient(rgba(0, 0, 0, 0.4),rgba(0, 0, 0, 0.4)), url(../pic/background-1.jpg);
/*  background: skyblue;*/
  background-size: cover;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}

.testquiz-title h2{
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  word-spacing: 6px;
  letter-spacing: 1px;
  font-family: cursive;
  position: absolute;

}
#text-slide-1{
		top: 40px;
}
#text-slide-2{
  top: 100px;
}
#web-name{
      box-shadow: 0px 0px 25px -5px #fe0000;text-shadow: 0 0 15px #000;
       color: #fff;background-color: #df133c;
      padding: 10px 25px;font-size: 0.5em;border-radius: 15%;letter-spacing: 1px;
    }
a{
   text-decoration: none;
}

.tool-container{
  width: auto;
  margin: auto;
  margin-top: 50px;
  /*border: 1px solid red;*/
  align-items: center;
  justify-content: center;
  display: flex;
  /*gap: 40px;*/
  flex-wrap: wrap;
}
.tool-items{
  height: 230px;
  width: 170px;
  background: #900c3f; 
  border: 1px solid gray;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 7px 7px 20px gray;
  margin: 15px 20px;
  padding-bottom: 10px;
}
.tool-items img{
  width: 100%;
  height: 170px;
  transition: 0.5s;
}
.tool-items img:hover{
    transform: scale(1.1);
}
.tool-items > a{
    font-size: 15px;
    color: #fff;
    /*padding: 0px 10px;*/
    text-align: center;
}

@media (max-width: 650px){
  .testquiz-title{
    height: 150px;
  }

  .testquiz-title h2{
    font-size: 20px;
  }
  #text-slide-2{
    top: 80px;
  }
}